1bashThis demonstrates declaring a variable as an integer type and incrementing its value by 1 in Bash.declare -i count # Declare as type integer count+=1 # Incrementbash internaldata manipulationsother variable featuresvariable types (integer)